home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Developer's Kit 1996
/
Delphi Developer's Kit 1996.iso
/
power
/
sockv2
/
ftp_pr.dpr
< prev
next >
Wrap
Text File
|
1995-12-22
|
662b
|
25 lines
program Ftp_pr;
uses
Forms,
Ftp in 'FTP.PAS' {FTPForm},
Login in 'LOGIN.PAS' {LoginDLG},
Fileget in 'FILEGET.PAS' {GetDLG},
Fileput in 'FILEPUT.PAS' {PutDLG},
Fileren in 'FILEREN.PAS' {RenDLG},
Fileview in 'FILEVIEW.PAS' {ViewDLG},
Meter in 'METER.PAS' {MeterDLG};
{$R *.RES}
begin
Application.CreateForm(TFTPForm, FTPForm);
Application.CreateForm(TLoginDLG, LoginDLG);
Application.CreateForm(TGetDLG, GetDLG);
Application.CreateForm(TPutDLG, PutDLG);
Application.CreateForm(TRenDLG, RenDLG);
Application.CreateForm(TViewDLG, ViewDLG);
Application.CreateForm(TMeterDLG, MeterDLG);
Application.Run;
end.